home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Business Assistant
/
Business Assistant.iso
/
indus
/
rentals
/
inittwo.bat
< prev
next >
Wrap
DOS Batch File
|
1988-12-18
|
1KB
|
44 lines
echo off
rem initflop.bat
cls
echo +
echo +
echo + This program will create a new RENTALS system for a two
echo + drive system. It will overwrite previously installed data
echo + files on Drive B:. This disk should be installed in Drive A:
echo + Install a formatted blank disk in Drive B: The disk in
echo + Drive B: will contain all the data files for your account.
echo + You can create additional disks for separate accounts and
echo + transaction periods. You may want to copy all the files on
echo + Drive A: to a bootable disk. This disk will work with all
echo + your RENTALS data disks in Drive B:.
echo +
echo +
echo + To abort to DOS type Ctrl-C and then 'Y', else
echo +
echo +
echo +
pause
echo on
erase datadisk.mem
copy RENTFILE.dbf b:RENTALS.dbf
copy en.ntx b:entrydat.ntx
copy bu.ntx b:building.ntx
copy ch.ntx b:chartacc.ntx
copy tr.ntx b:transdat.ntx
echo off
cls
echo +
echo +
echo +
echo + Answer 'B' to the upcoming Data Disk question
echo +
echo +
echo + From now on use 'RENTALS' to start your program.
echo +
echo +
pause
echo on
RENTALS